golang.org/x/net/http2.ClientConn.goAway (field)

10 uses

	golang.org/x/net/http2 (current package)
		transport.go#L316: 	goAway          *GoAwayFrame             // if non-nil, the GoAwayFrame we received
		transport.go#L848: 	old := cc.goAway
		transport.go#L849: 	cc.goAway = f
		transport.go#L856: 		cc.goAway.ErrCode = old.ErrCode
		transport.go#L936: 		Closing:              cc.closing || cc.singleUse || cc.doNotReuse || cc.goAway != nil,
		transport.go#L972: 	st.canTakeNewRequest = cc.goAway == nil && !cc.closed && !cc.closing && maxConcurrentOkay &&
		transport.go#L2097: 	closeOnIdle := cc.singleUse || cc.doNotReuse || cc.t.disableKeepAlives() || cc.goAway != nil
		transport.go#L2163: 	if cc.goAway != nil && isEOFOrNetReadError(err) {
		transport.go#L2165: 			LastStreamID: cc.goAway.LastStreamID,
		transport.go#L2166: 			ErrCode:      cc.goAway.ErrCode,